home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 6 / MacMania 6.toast / / Multimedia & Desktop / sk8 / SK8InJava / Code / Renderers / Renderer.java < prev    next >
Encoding:
Java Source  |  1997-02-27  |  298 b   |  15 lines  |  [TEXT/CWIE]

  1. /*  SK8 © 1997 Apple Computer, Inc.
  2.     This code is protected under the current SK8 License
  3.     See http://sk8.research.apple.com/ for more information
  4.     Apple Research Laboratories
  5. */
  6.  
  7.  
  8. import java.awt.*;
  9.  
  10. abstract class renderer {
  11.     abstract void render(Graphics g, actor act, Region reg);
  12. }
  13.  
  14.  
  15.